home *** CD-ROM | disk | FTP | other *** search
/ NASA Climatology Interdisciplinary Data Collection / NASA Climatology Interdisciplinary Data Collection - Disc 4.iso / software / grads / lib / ex1.gui < prev    next >
Text File  |  1998-04-23  |  516b  |  14 lines

  1. #
  2. # Example 1: Opening files, displaying variables, and quitting.
  3. #
  4.         MakeButton( open,    "Open",    Load,    "open" )
  5.         MakeButton( var,     "Var",     VarSel,  NULL )
  6.         MakeButton( display, "Display", Display, "display" )
  7.         MakeButton( quit,    "Quit",    Cmd,     "quit" )
  8.  
  9.         SetWidgetPos(var,     NO_CARE, NULL, PLACE_RIGHT, open)
  10.         SetWidgetPos(display, NO_CARE, NULL, PLACE_RIGHT, var)
  11.         SetWidgetPos(quit,    NO_CARE, NULL, PLACE_RIGHT, display)
  12.  
  13.         MainLoop()
  14.